home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / pvm34b3.zip / pvm34b3 / pvm3 / libfpvm / WIN32 / Pvmfpsend.c < prev    next >
C/C++ Source or Header  |  1997-07-22  |  402b  |  21 lines

  1.  
  2. /* $Id: Pvmfpsend.c,v 1.1 1997/06/27 16:29:59 pvmsrc Exp $ */
  3.  
  4. #ifdef WIN32
  5. #include "..\..\include\pvm3.h"
  6. #include "..\..\src\pvmwin.h"
  7. #else 
  8. #include "pvm3.h"
  9. #endif
  10.  
  11. #include "pvm_consts.h"
  12.  
  13. void /*__stdcall*/ __fortran
  14. PVMFPSEND (tid, msgtag, buf,buf_len, len, dt, info)
  15.    int *tid, *msgtag, *len, *dt, *info;
  16.    char *buf;int buf_len;
  17. {
  18.    *info = pvm_psend(*tid, *msgtag, buf, *len, *dt);
  19. }
  20.  
  21.